/* ===================================
   ROOT VARIABLES & GLOBAL STYLES
   =================================== */

:root {
    /* Primary Colors - Football Theme */
    --primary-brown: #501E05;
    --primary-brown-light: #7A2E08;
    --primary-brown-dark: #3A1604;
    --primary-brown-hover: #641F00;

    /* Accent Colors */
    --accent-green: #2ECC40;
    --accent-green-light: #4FD65E;
    --accent-gold: #FFD700;
    --accent-orange: #FF6B35;

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F9F9F9;
    --light-gray: #E8E8E8;
    --medium-gray: #CCCCCC;
    --dark-gray: #4A4A4A;
    --black: #1A1A1A;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-brown) 0%, var(--primary-brown-dark) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(80, 30, 5, 0.9) 0%, rgba(58, 22, 4, 0.95) 100%);
    --gradient-hero: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(80, 30, 5, 0.7) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Exo 2', sans-serif;
    --font-display: 'Jura', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    --container-padding: 20px;
}

/* ===================================
   FONT FACE DECLARATIONS
   =================================== */

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'Exo 2';
    src: url('../fonts/Exo2-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'Jura';
    src: url('../fonts/Jura-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul,
ol {
    list-style: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 15px;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-primary {
    color: var(--primary-brown);
}

.text-accent {
    color: var(--accent-green);
}

.text-white {
    color: var(--white);
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.container-fluid {
    width: 100%;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.section-dark {
    background-color: var(--black);
    color: var(--white);
}

.section-light {
    background-color: var(--off-white);
}

.section-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width var(--transition-slow), height var(--transition-slow);
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-brown);
    border: 2px solid var(--primary-brown);
}

.btn-outline:hover {
    background-color: var(--primary-brown);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-brown);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background-color: var(--off-white);
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.125rem;
}

.btn-small {
    padding: 12px 30px;
    font-size: 0.875rem;
}

/* ===================================
   CARDS
   =================================== */

.card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-img {
    transform: scale(1.1);
}

.card-body {
    padding: 30px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-brown);
}

.card-text {
    color: var(--dark-gray);
    margin-bottom: 10px;
}

/* ===================================
   FORMS
   =================================== */

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--black);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    background-color: var(--white);
    color: var(--black);
    transition: all var(--transition-normal);
}

.form-control:focus {
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 4px rgba(80, 30, 5, 0.1);
}

.form-control::placeholder {
    color: var(--medium-gray);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23501E05' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    appearance: none;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-column {
    flex-direction: column;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-50 {
    padding-bottom: 50px;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.overflow-hidden {
    overflow: hidden;
}

/* ===================================
   DECORATIVE ELEMENTS
   =================================== */

/* Football Pattern Background */
.bg-pattern {
    position: relative;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 35px,
            rgba(80, 30, 5, 0.03) 35px,
            rgba(80, 30, 5, 0.03) 70px);
    pointer-events: none;
    z-index: 0;
}

/* Diagonal Stripes */
.diagonal-stripes {
    position: relative;
    overflow: hidden;
}

.diagonal-stripes::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.05) 20px,
            rgba(255, 255, 255, 0.05) 40px);
    pointer-events: none;
    z-index: 1;
}

/* Gradient Overlay */
.overlay-gradient {
    position: relative;
}

.overlay-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.overlay-gradient>* {
    position: relative;
    z-index: 2;
}

/* Glowing Effect */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle,
            rgba(46, 204, 64, 0.2) 0%,
            transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

/* ===================================
   HEADER STYLES
   =================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-logo {
    flex-shrink: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: transform var(--transition-normal);
}

.header-logo:hover .logo-img {
    transform: scale(1.05);
}

.header-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--black);
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary-brown);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-cta {
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--primary-brown);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Add padding to body to account for fixed header */
body {
    padding-top: 90px;
}

/* ===================================
   FOOTER STYLES
   =================================== */

.site-footer {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.02) 20px,
            rgba(255, 255, 255, 0.02) 40px);
    pointer-events: none;
}

.footer-top {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background-color: var(--white);
    color: var(--primary-brown);
    transform: translateY(-5px);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-normal);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 10px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition-normal);
}

.contact-item a:hover {
    color: var(--white);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright,
.developer-credit {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ===================================
   HOME PAGE STYLES
   =================================== */

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-title {
    color: var(--white);
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    color: var(--white);
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 500;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-cta {
    margin-top: 40px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    font-style: italic;
    color: var(--accent-gold);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.hero-scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* Statistics Section */
.stats-section {
    background-color: var(--off-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-brown);
    margin-bottom: 10px;
    font-family: var(--font-display);
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-description {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* Video Section */
.video-section {
    padding: 80px 0;
}

.video-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.feature-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Prices Preview Section */
.prices-preview-section {
    text-align: center;
}

.section-header {
    max-width: 900px;
    margin: 0 auto 50px;
}

.section-title {
    margin-bottom: 25px;
}

.section-subtitle {
    color: var(--primary-brown);
    margin-bottom: 20px;
}

.section-description {
    color: var(--dark-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-tagline {
    font-size: 1.2rem;
    color: var(--dark-gray);
    font-weight: 600;
    line-height: 1.8;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Trainers Preview Section */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-text {
    padding: 40px 0;
}

.content-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.content-image:hover .feature-img {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--black);
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    text-align: center;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

/* Booking Form Section */
.booking-form-section {
    background-color: var(--off-white);
}

.booking-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 60px;
}

.booking-form {
    background-color: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 30px;
    text-align: center;
    font-family: var(--font-display);
}

.form-section {
    margin-bottom: 40px;
}

.form-section-title {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
    font-family: var(--font-secondary);
}

.contact-info-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    height: fit-content;
    position: sticky;
    top: 110px;
}

.contact-info-card h4 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--white);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.contact-detail-item svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-detail-item a {
    color: rgba(255, 255, 255, 0.95);
    transition: color var(--transition-normal);
}

.contact-detail-item a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    padding: 60px 50px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.4s ease-out;
}

.modal-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.modal-title {
    font-size: 2rem;
    color: var(--primary-brown);
    margin-bottom: 20px;
}

.modal-message {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.modal-message strong {
    color: var(--primary-brown);
    font-weight: 700;
}

/* ===================================
   SHARED PAGE ELEMENTS
   =================================== */

/* Page Hero */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-hero-title {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-hero-subtitle {
    color: var(--white);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Text Content */
.text-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 25px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.cta-title {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 40px;
}

/* ===================================
   TRAINERS PAGE STYLES
   =================================== */

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
}

.trainer-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.trainer-image-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.trainer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.trainer-card:hover .trainer-image {
    transform: scale(1.1);
}

.trainer-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.trainer-content {
    padding: 40px;
}

.trainer-name {
    font-size: 1.8rem;
    color: var(--primary-brown);
    margin-bottom: 10px;
}

.trainer-specialty {
    font-size: 1rem;
    color: var(--accent-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.trainer-description {
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.achievements-title {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 700;
}

.achievements-list {
    list-style: none;
    padding: 0;
}

.achievements-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--dark-gray);
    line-height: 1.7;
}

.achievements-list li::before {
    content: '⚽';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

/* ===================================
   ABOUT PAGE STYLES
   =================================== */

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-text {
    margin-bottom: 50px;
}

.story-paragraph {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 25px;
}

.story-quote {
    display: block;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-brown);
    font-style: italic;
    margin: 30px 0;
    padding: 20px 30px;
    border-left: 4px solid var(--primary-brown);
    background-color: rgba(80, 30, 5, 0.05);
}

.evolution-section {
    background-color: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 50px;
}

.evolution-title {
    font-size: 1.8rem;
    color: var(--primary-brown);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.feature-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.mission-box {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: var(--shadow-lg);
}

.mission-title {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.mission-statement {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-gold);
    font-style: italic;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.story-closing {
    font-size: 1.3rem;
    text-align: center;
    color: var(--primary-brown);
    margin-top: 40px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-brown);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.3rem;
    color: var(--primary-brown);
    margin-bottom: 15px;
}

.feature-description {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ===================================
   SERVICES PAGE STYLES
   =================================== */

/* Pricing Table */
.pricing-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    background-color: var(--white);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.05rem;
}

.pricing-table thead {
    background: var(--gradient-primary);
    color: var(--white);
}

.pricing-table thead th {
    padding: 25px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--light-gray);
    transition: background-color var(--transition-normal);
}

.pricing-table tbody tr:hover {
    background-color: rgba(80, 30, 5, 0.05);
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table tbody td {
    padding: 25px 20px;
    color: var(--dark-gray);
}

.pricing-table .pitch-type {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-brown);
    font-family: var(--font-display);
}

.pricing-table .price {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--accent-green);
    font-family: var(--font-display);
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(46, 204, 64, 0.1);
    border-radius: 12px;
    border-left: 4px solid var(--accent-green);
}

.pricing-note p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin: 0;
    font-weight: 600;
}

/* Inclusions Grid */
.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.inclusion-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.inclusion-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.inclusion-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(46, 204, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    transition: all var(--transition-normal);
}

.inclusion-card:hover .inclusion-icon {
    background: var(--accent-green);
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
}

.inclusion-title {
    font-size: 1.2rem;
    color: var(--primary-brown);
    margin-bottom: 15px;
}

.inclusion-description {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.contact-method-card {
    background-color: var(--white);
    padding: 50px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-brown);
}

.contact-method-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.contact-method-card:hover .contact-method-icon {
    transform: scale(1.15) rotate(10deg);
}

.contact-method-title {
    font-size: 1.4rem;
    color: var(--primary-brown);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-method-detail {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin: 0;
}

.contact-method-detail a {
    color: var(--dark-gray);
    transition: color var(--transition-normal);
}

.contact-method-detail a:hover {
    color: var(--primary-brown);
    text-decoration: underline;
}

/* Map Section */
.map-placeholder {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.map-placeholder:hover .map-overlay {
    opacity: 1;
}

.map-info {
    text-align: center;
    color: var(--white);
    padding: 40px;
}

.map-info h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.map-info p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================
   LEGAL PAGES STYLES (TERMS & PRIVACY)
   =================================== */

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 30px;
    padding: 10px 20px;
    background-color: var(--off-white);
    border-radius: 8px;
    display: inline-block;
}

.legal-intro {
    margin-bottom: 50px;
    padding: 30px;
    background-color: var(--off-white);
    border-radius: 16px;
    border-left: 4px solid var(--primary-brown);
}

.legal-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.legal-section {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--light-gray);
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section-title {
    font-size: 1.8rem;
    color: var(--primary-brown);
    margin-bottom: 25px;
    font-weight: 700;
}

.legal-subsection-title {
    font-size: 1.3rem;
    color: var(--black);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.legal-section strong {
    color: var(--black);
    font-weight: 700;
}

.legal-section a {
    color: var(--primary-brown);
    text-decoration: underline;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.legal-section a:hover {
    color: var(--primary-brown-hover);
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.legal-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    top: 0;
    color: var(--primary-brown);
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-box {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: 16px;
    margin: 30px 0;
    border-left: 4px solid var(--accent-green);
}

.contact-box p {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box strong {
    color: var(--primary-brown);
    font-size: 1.15rem;
}

.contact-box a {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.contact-box a:hover {
    color: var(--primary-brown-hover);
    text-decoration: underline;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--light-gray);
    text-align: center;
}

.legal-footer p {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.legal-footer a {
    color: var(--primary-brown);
    text-decoration: underline;
    font-weight: 700;
    transition: color var(--transition-normal);
}

.legal-footer a:hover {
    color: var(--primary-brown-hover);
}

/* ===================================
   RESPONSIVE BREAKPOINTS
   =================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .container {
        max-width: 960px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    .container {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 14px 30px;
    }

    .btn-large {
        padding: 16px 35px;
        font-size: 1rem;
    }

    /* Header Responsive */
    .header-nav {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transform: translateX(-100%);
        transition: transform var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }

    .header-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 15px;
        font-size: 1.1rem;
    }

    .header-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Footer Responsive */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    /* Home Page Responsive */
    .content-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .booking-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-card {
        position: static;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    /* Services Page Responsive */
    .trainers-grid {
        grid-template-columns: 1fr;
    }

    .trainer-card {
        max-width: 600px;
        margin: 0 auto;
    }

    .pricing-table thead {
        display: none;
    }

    .pricing-table tbody tr {
        display: block;
        margin-bottom: 30px;
        border: 2px solid var(--light-gray);
        border-radius: 12px;
        padding: 20px;
    }

    .pricing-table tbody td {
        display: block;
        text-align: left;
        padding: 10px 0;
        border-bottom: 1px solid var(--light-gray);
    }

    .pricing-table tbody td:last-child {
        border-bottom: none;
    }

    .pricing-table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.85rem;
        color: var(--primary-brown);
        display: block;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    :root {
        --section-padding: 40px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    /* Footer Responsive Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .logo-img {
        height: 50px;
    }

    /* Home Page Responsive Mobile */
    .booking-form {
        padding: 30px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    /* Trainers & Contact Responsive Mobile */
    .trainer-image-wrapper {
        height: 250px;
    }

    .map-placeholder {
        height: 350px;
    }
}